M291 S3 R"Welcome to Modix" P"This is the setup wizard to guide you through your printer setup"
M291 S4 R"Printer Model" P"Choose your printer model" K{"Big-60","Big-120X","Big-120Z","Big-180X","Big-Meter","Everest"}
	if input = 0
		echo >"0:/sys/setup/setup_parameters.g" "if !exists(global.model)"
		echo >>"0:/sys/setup/setup_parameters.g" "   global model = ""big60"""
		echo >>"0:/sys/setup/setup_parameters.g" "   M550 P""Big-60 GEN5"""
	if input = 1
		echo >"0:/sys/setup/setup_parameters.g" "if !exists(global.model)"
		echo >>"0:/sys/setup/setup_parameters.g" "   global model = ""big120"""
		echo >>"0:/sys/setup/setup_parameters.g" "   M550 P""Big-120X GEN5"""
	if input = 2
		echo >"0:/sys/setup/setup_parameters.g" "if !exists(global.model)"
		echo >>"0:/sys/setup/setup_parameters.g" "   global model = ""big120Z"""
		echo >>"0:/sys/setup/setup_parameters.g" "   M550 P""Big-120Z GEN5"""
	if input = 3
		echo >"0:/sys/setup/setup_parameters.g" "if !exists(global.model)"
		echo >>"0:/sys/setup/setup_parameters.g" "   global model = ""big180"""
		echo >>"0:/sys/setup/setup_parameters.g" "   M550 P""Big-180 GEN5"""
	if input = 4
		echo >"0:/sys/setup/setup_parameters.g" "if !exists(global.model)"
		echo >>"0:/sys/setup/setup_parameters.g" "   global model = ""meter"""
		echo >>"0:/sys/setup/setup_parameters.g" "   M550 P""Big-Meter GEN5"""
		echo >"0:/sys/config_probe_offset_U.g" "M208 S0 U1085"
	if input = 5
		echo >"0:/sys/setup/setup_parameters.g" "if !exists(global.model)"
		echo >>"0:/sys/setup/setup_parameters.g" "   global model = ""everest"""
		echo >>"0:/sys/setup/setup_parameters.g" "   M550 P""Everest GEN5"""
		echo >"0:/sys/config_probe_offset_U.g" "M208 S0 U1085"

M291 S4 R"Single or Dual printhead" P"Do you have a single extruder or a IDEX dual extruder setup" K{"Single","Dual"} 
	if input = 0
		echo >>"0:/sys/setup/setup_parameters.g" "   global idex = 0"
	if input = 1
		echo >>"0:/sys/setup/setup_parameters.g" "   global idex = 1"

M291 S4 R"Ultra Printhead" P"Do you have a the Ultra printhead add-on on the primary" K{"Yes","No"} 
	if input = 0
		echo >>"0:/sys/setup/setup_parameters.g" "   global ultraprimary = 1"
	if input = 1
		echo >>"0:/sys/setup/setup_parameters.g" "   global ultraprimary = 0"

M291 S4 R"Ultra Printhead" P"Do you have a the Ultra printhead add-on on the Secondary" K{"Yes","No"} 
	if input = 0
		echo >>"0:/sys/setup/setup_parameters.g" "   global ultrasecondary = 1"
	if input = 1
		echo >>"0:/sys/setup/setup_parameters.g" "   global ultrasecondary = 0"

M291 S2 R"Congratulations" P"Printer Initialization is complete"
M291 S2 R"Congratulations" P"Reboot the printer to load the new configuration"